home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / textutils_1_3.LHA / textutils-1.3 / cat / tail.1 < prev    next >
Text File  |  1992-09-22  |  3KB  |  133 lines

  1.  
  2.  
  3.  
  4. TAIL(1L)          MISC. REFERENCE MANUAL PAGES           TAIL(1L)
  5.  
  6.  
  7.  
  8. NAME
  9.      tail - output the last part of files
  10.  
  11. SYNOPSIS
  12.      tail [-c [+]N[bkm]]  [-n  [+]N]  [-fqv]  [--bytes=[+]N[bkm]]
  13.      [--lines=[+]N]  [--follow]  [--quiet] [--silent] [--verbose]
  14.      [file...]
  15.  
  16.      tail [{-,+}Nbcfklmqv] [file...]
  17.  
  18. DESCRIPTION
  19.      This manual page documents the GNU version  of  tail.   tail
  20.      prints  the  last  part  (10 lines by default) of each given
  21.      file; it reads from standard input if no files are given  or
  22.      when  a  filename  of  `-' is encountered.  If more than one
  23.      file is given, it prints a header consisting of  the  file's
  24.      name  enclosed in `==>' and `<==' before the output for each
  25.      file.
  26.  
  27.      The GNU tail can output any amount of data, unlike the  Unix
  28.      version,  which  uses  a  fixed  size  buffer.  It has no -_r
  29.      option (print in reverse).  Reversing a  file  is  really  a
  30.      different  job from printing the end of a file; the BSD tail
  31.      can only reverse files that are at  most  as  large  as  its
  32.      buffer,  which is typically 32k.  A reliable and more versa-
  33.      tile way to reverse files is the GNU tac command.
  34.  
  35.   OPTIONS
  36.      tail accepts two option  formats:  the  new  one,  in  which
  37.      numbers  are  arguments  to  the option letters, and the old
  38.      one, in which a `+' or `-' and optional number  precede  any
  39.      option letters.
  40.  
  41.      If a number (`N') starts with a `+',  tail  begins  printing
  42.      with  the  Nth  item from the start of each file, instead of
  43.      from the end.
  44.  
  45.      -_c _N, --_b_y_t_e_s _N
  46.           Tail by N bytes.  N is a  nonzero  integer,  optionally
  47.           followed  by one of the following characters to specify
  48.           a different unit.
  49.  
  50.           b    512-byte blocks.
  51.  
  52.           k    1-kilobyte blocks.
  53.  
  54.           m    1-megabyte blocks.
  55.  
  56.      -_f, --_f_o_l_l_o_w
  57.           Loop forever trying to read more characters at the  end
  58.           of  the  file, on the assumption that the file is grow-
  59.           ing.  Ignored if reading from a pipe.  Cannot  be  used
  60.  
  61.  
  62.  
  63. Sun Release 4.1           Last change:                          1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. TAIL(1L)          MISC. REFERENCE MANUAL PAGES           TAIL(1L)
  71.  
  72.  
  73.  
  74.           if more than one file is given.
  75.  
  76.      -_l, -_n _N, --_l_i_n_e_s _N
  77.           Tail by N lines.
  78.  
  79.      -_q, --_q_u_i_e_t, --_s_i_l_e_n_t
  80.           Never print filename headers.
  81.  
  82.      -_v, --_v_e_r_b_o_s_e
  83.           Always print filename headers.
  84.  
  85.      The long-named options can be introduced with `+' as well as
  86.      `--',  for compatibility with previous releases.  Eventually
  87.      support for `+' will be removed, because it is  incompatible
  88.      with the POSIX.2 standard.
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129. Sun Release 4.1           Last change:                          2
  130.  
  131.  
  132.  
  133.